return FALSE instead of TRUE. This is just a quick fix to prevent the idle
authorJonathan Blandford <jrb@redhat.com>
Thu, 11 Nov 2004 16:46:14 +0000 (16:46 +0000)
committerJonathan Blandford <jrb@src.gnome.org>
Thu, 11 Nov 2004 16:46:14 +0000 (16:46 +0000)
Thu Nov 11 11:34:32 2004  Jonathan Blandford  <jrb@redhat.com>

        * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead
        of TRUE.  This is just a quick fix to prevent the idle from
        looping indefinitely.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkfilechooserbutton.c

index ae34828f2f06632f84dd0786cf225d254f277237..19cab17482a2d7d073da6608fafd855911722131 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Nov 11 11:34:32 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead
+       of TRUE.  This is just a quick fix to prevent the idle from
+       looping indefinitely.
+
 2004-11-11  J. Ali Harlow  <ali@juiblex.co.uk>
 
        * gdk/Makefile.am:
index ae34828f2f06632f84dd0786cf225d254f277237..19cab17482a2d7d073da6608fafd855911722131 100644 (file)
@@ -1,3 +1,9 @@
+Thu Nov 11 11:34:32 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead
+       of TRUE.  This is just a quick fix to prevent the idle from
+       looping indefinitely.
+
 2004-11-11  J. Ali Harlow  <ali@juiblex.co.uk>
 
        * gdk/Makefile.am:
index ae34828f2f06632f84dd0786cf225d254f277237..19cab17482a2d7d073da6608fafd855911722131 100644 (file)
@@ -1,3 +1,9 @@
+Thu Nov 11 11:34:32 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead
+       of TRUE.  This is just a quick fix to prevent the idle from
+       looping indefinitely.
+
 2004-11-11  J. Ali Harlow  <ali@juiblex.co.uk>
 
        * gdk/Makefile.am:
index ae34828f2f06632f84dd0786cf225d254f277237..19cab17482a2d7d073da6608fafd855911722131 100644 (file)
@@ -1,3 +1,9 @@
+Thu Nov 11 11:34:32 2004  Jonathan Blandford  <jrb@redhat.com>
+
+       * gtk/gtkfilechooserbutton.c (update_idler): return FALSE instead
+       of TRUE.  This is just a quick fix to prevent the idle from
+       looping indefinitely.
+
 2004-11-11  J. Ali Harlow  <ali@juiblex.co.uk>
 
        * gdk/Makefile.am:
index 8105c82efe5f5483aea7804bc6f391a0e4bbb578..98cb1a851e5aa5e0e4ce48376828b9c9df4f2ede 100644 (file)
@@ -1694,7 +1694,7 @@ update_idler (gpointer user_data)
       retval = FALSE;
     }
   else
-    retval = TRUE;
+    retval = FALSE;
   
   GDK_THREADS_LEAVE ();